type github.com/jackc/pgx/v5/pgtype.tsvectorParser

9 uses

	github.com/jackc/pgx/v5/pgtype (current package)
		tsvector.go#L348: type tsvectorParser struct {
		tsvector.go#L353: func (p *tsvectorParser) atEnd() bool {
		tsvector.go#L357: func (p *tsvectorParser) peek() byte {
		tsvector.go#L361: func (p *tsvectorParser) consume() (byte, bool) {
		tsvector.go#L370: func (p *tsvectorParser) consumeSpaces() {
		tsvector.go#L377: func (p *tsvectorParser) consumeLexeme() (string, error) {
		tsvector.go#L413: func (p *tsvectorParser) consumePositions() ([]TSVectorPosition, error) {
		tsvector.go#L434: func (p *tsvectorParser) consumePosition() (TSVectorPosition, error) {
		tsvector.go#L475: 	p := &tsvectorParser{str: strings.TrimSpace(s), pos: 0}